home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 March / EnigmA AMIGA RUN 05 (1996)(G.R. Edizioni)(IT)[!][issue 1996-03][Skylink CD IV].iso / earcd / program / ixemlsrc.lha / ixemul / NEWS < prev    next >
Text File  |  1996-01-18  |  12KB  |  281 lines

  1. ============
  2. VERSION 42.0
  3. ============
  4.  
  5. Ixtrace has been updated to recognize all 42.0 syscalls, thanks to David
  6. Zaroski.
  7.  
  8. Installed patch in arith.c to work around bug in IEEEDPCmp.  If the first
  9. 32 bits of both doubles are equal, and both doubles are negative, then
  10. the result can no longer be trusted.  Discovered by Bart Van Assche.
  11.  
  12. Ctrl-C handling worked with KingCON, but not with the standard AmigaDOS
  13. CON-handler (since I use KingCON I never noticed this until it was pointed
  14. out to me by Fred Fish :-). This has now been fixed. See the comments in
  15. library/__read.c for more information.
  16.  
  17. Added the uname() function, written by Lars Hecking.
  18.  
  19. The termios code now properly recognizes the ICRNL input flag for '\r' to
  20. '\n' translation.
  21.  
  22. Fixed a bug in the fcntl() function (actually, in the fcntl.h and
  23. sys/fcntl.h headers).
  24.  
  25. Moved several static variables to user.h, so they are now process-specific.
  26.  
  27. Added profiling support. It was always there, but it was never actually
  28. used.
  29.  
  30. The write() function writes its buffer line-by-line instead of in one big
  31. chunk if the filehandle is the handle of an interactive stream (for
  32. example, a console window). This allows the user to interrupt the output by
  33. pressing a key and it also allows the use of Ctrl-C to break the program.
  34. In previous versions you were unable to stop the output if you forgot to
  35. redirect it to a file. E.g., 'cat /libs/ixemul.library' would essentially
  36. take over the computer.
  37.  
  38. Changed default stack size handling when a new process is launched. It is
  39. either the value of the environment variable IXSTACK, or it inherits the
  40. size from its parent, but if that size is less than 16384, it uses a stack
  41. of 16384 bytes instead.
  42.  
  43. Replaced ixconfig by ixprefs (written by Kriton Kyrimis).
  44.  
  45. Integrated the partial ptrace support from Leonard Norrgard.
  46.  
  47. Removed the gnulib, gnulib-68881 and gnulib-soft-float directories.
  48.  
  49. Compiled with -Wall and fixed (nearly) all warnings. Some warnings are
  50. inevitable and cannot be avoided. -Wall already caught one illegal memory
  51. access bug in __Close()!
  52.  
  53. Added functions to set and get ixemulbase-private information. This will
  54. break older ixconfig's but is much cleaner. Nearly all of the ixemulbase
  55. structure is now off-limits and liable to change without notice! You are
  56. warned! In fact, the structure has been changed already. The library will
  57. complain if a program called 'ixconfig' tries to use it to prevent the user
  58. from using an old ixconfig with the new library.
  59.  
  60. Removed several arithmetic functions dealing with 'long long' types. They
  61. didn't belong in the library, link with libgcc.a instead. Also removed some
  62. arithmetic functions that are never called because they are compiled
  63. directly in 68000 assembly. Don't know why they were ever added.
  64.  
  65. Fixed gen_glue.c so that it no longer generates glue for obsolete functions.
  66.  
  67. Removed ssystem(). ssystem() was the precursor of vfork/execve, and is no
  68. longer needed. NOTE: it is still used in gcc. But this fails spectacularly
  69. once you use Ctrl-C! Delete gcc and replace it by gccv, this one uses
  70. vfork/execve as it should and works perfectly.
  71.  
  72. ixemul.library now uses the new-style inlines.
  73.  
  74. qsort() is now re-entrant and no longer uses the horrible Semaphore hack.
  75.  
  76. Moved general/fts.c to the static library. These directory-tree traversal
  77. functions are rarely, if ever used, so they belong in libc.a and not in a
  78. shared library.
  79.  
  80. Reorganized the Makefiles. The makefiles now use several GNU make-only
  81. features to make them smaller and easier to maintain.  'make clean' and
  82. 'make clobber' now work correctly.  It is also no longer nessecary to add
  83. the -srcdir option to 'sh configure' in order to create valid Makefiles.
  84.  
  85. The top level Makefile contains the line 'export CATENATE = 1'. If this
  86. line is present, the compilation speed is greatly improved by catenating
  87. several small C-sources together into one bigger C-source, and then the
  88. bigger one is compiled. By commenting this line each separate source is 
  89. compiled. Note that besides improving compilation speed, the library also
  90. gets smaller as the compiler can now determine whether a call can be made
  91. relative or should remain absolute.
  92.  
  93. Fixed a symlink-bug (ln -s /ram/t created a symlink to /am/t, removing the
  94. first character of the volumename).
  95.  
  96. Moved ixtrace to the new utils directory, together with the small ixrun
  97. utility.  ixrun can be used to run Amiga batch files from /bin/sh (just put
  98. ';!ixrun' at the second line (!) of the batch file).  Also added manual
  99. page for ixrun.
  100.  
  101. Cleaned up the static directory:  removed xmalloc.c and alloca.c as they do
  102. not belong in the standard C library.  Also replaced the ctime.c source by
  103. the version from elsie.nci.nih.gov, which is the official version used by
  104. NetBSD and Linux, among others.  Finally, errlst.c and siglist.c now just
  105. include their counterparts in the general directory.
  106.  
  107. The version information is placed in the version.in file in the
  108. top-level directory. The version.c and version.h sources are created from
  109. this file.
  110.  
  111. The print_base_size.c and print_user.c sources have been replaced by
  112. create_header.c, which creates a header containing a few defines that are
  113. used by start.s and trap.s. These used to be hard-coded, but now they are
  114. generated, preventing future mistakes.
  115.  
  116. Added the raise function. For some reason, raise.c was never compiled into
  117. the library. It is now.
  118.  
  119. Removed ALL sources that were not needed for compilation.
  120.  
  121. Added timezone handling. The timezone databases from elsie.nci.nih.gov are
  122. used and installed in etc:zoneinfo. The new ixtimezone utility should be
  123. added to the startup-sequence. This utility determines the correct offset
  124. for Greenwich Mean Time. Read the manual page (Yes! Documentation at last!)
  125. for more information.
  126.  
  127. Merged the ixpipe-handler into the ixemul-distribution. It has been placed
  128. in the utils-directory.
  129.  
  130. Added hack to allow ixemul to run AmigaDOS scripts without breaking them
  131. when run from the AmigaDOS shell. The problem is that the ".KEY" string
  132. must be at the first line of the script, while ixemul also looks for "#!"
  133. and ";!" in the first line. If a file starts with ".KEY", ixemul will now
  134. skip the first line, before checking for "#!" and ";!".
  135.  
  136. ============
  137. VERSION 41.4
  138. ============
  139.  
  140. Integrated patches from Hans Verkuil that fix CTRL-C handling, fix another
  141. signal bug, fix problem with "rm -f", prepare for proper timezone handling,
  142. and remove '@' hack in argument parsing.
  143.  
  144. Applied patch from Kamil Iskra to avoid incompatibility between ixemul
  145. and the popular KingCON 1.3.  This is KingCON's fault because it makes
  146. invalid assumptions about the nature of reply port contained in "dp_Port"
  147. of packets sent to it.  Also applied patch (duplicated in Hans' patches)
  148. to crt0.c that fixes bug where the revision requester was not working
  149. properly if the current revision is 0.
  150.  
  151. Applied patch from Rask Lambertsen (duplicated in Hans' patches) that makes
  152. ixemul.library open "CONSOLE:" instead of "*".
  153.  
  154. Added implementation from Kriton Kyrimis for srand48, seed48, lcong48,
  155. lrand48, nrand48, mrand48, jrand48, drand48, and erand48.
  156.  
  157. Added "#include <sys/types.h>" to <dirent.h> to be more compatible
  158. with most current systems that do this inclusion for you.  This change
  159. should be backwards compatible with code that does the inclusion
  160. explicitly.  Suggested by Lars Hecking.
  161.  
  162. Changed prototype in <unistd.h> for getpgrp() to take a pid_t argument,
  163. which matches the implementation in library/getcrap.c.  Suggested by
  164. Lars Hecking.
  165.  
  166. Made change to <math-68881.h> in pow() so that if x<0 the code does
  167. log(-x) rather than log(x).  Suggested by Thomas Radtke and implemented
  168. by Lars Hecking.
  169.  
  170. Disable definitions of F_GETLK, F_SETLK, F_SETLKW, F_RDLCK, F_UNLCK, and
  171. F_WRLCK in <fcntl.h> since they are unimplemented and thus might have misled
  172. autoconfiguration schemes into thinking they were available.  Also fix
  173. ixtrace.c so it will still compile without these defined.  Suggested by
  174. Robert Ramiega.
  175.  
  176. Integrated patch from joop van de wege (duplicated in Han's patches) for
  177. setting up fpu on 68060.
  178.  
  179. ============
  180. VERSION 41.3
  181. ============
  182.  
  183. Updated DBL_MIN and DBL_MAX in float.h to include one additional digit
  184. of precision.  Enclose negative constants in parens to avoid unexpected
  185. conversion to subtraction via cpp macros.
  186.  
  187. Applied patch from Hans Verkuil to fix serious bug in signal handling,
  188. to reset all signal handlers after an execve, except for those which are
  189. being ignored (SIG_IGN).
  190.  
  191. Applied patch from joop van de wege to trap.s to set 68881 rounding mode
  192. back to truncation instead of "round to nearest", as required by the
  193. ANSI C standard which specifies truncation.
  194.  
  195. Integrated ixtrace into source tree and arranged for it to be built and
  196. installed.
  197.  
  198. ============
  199. VERSION 41.2
  200. ============
  201.  
  202. Added "#include <sys/types.h>" to <sys/stat.h> to be more compatible
  203. with most current systems that do this inclusion for you.  This change
  204. should be backwards compatible with code that does the inclusion
  205. explicitly.
  206.  
  207. Changed version string to be style guide compliant.  Also arranged that
  208. version.o gets linked in, since it has the $VER: string and is otherwise
  209. unreferenced by any ixemul.library code.
  210.  
  211. Merged patches from Hans Verkuil to fix execve environment passing,
  212. always open the console for stderr if no other file handle is provided,
  213. move AmigaDOS style filename matching into glob(), and fix a small problem
  214. with "open(NULL,...) that caused enforcer hits.
  215.  
  216. ============
  217. VERSION 41.1
  218. ============
  219.  
  220. A 68040 version of the library with soft floating point is now built,
  221. since there are apparently systems that use the versions of the 68040
  222. without FPUs.
  223.  
  224. Fixed crt0 files to use "jra _ENTRY" as first instruction rather than
  225. "jmp pc@(_ENTRY)" which was getting assembled by gas 2.5.2 as a 68020+
  226. instruction.  Note "jmp pc@(_ENTRY:W)" seems to generate the 68000
  227. instruction but a bad jump offset.  Added corresponding change to
  228. execve.c to recognize ixemul using executables with this change.
  229.  
  230. Fixed cpu.h, machdep.c, trap.s to avoid pc relative assembly instruction
  231. that was getting compiled as 68020+ instruction and causing crashes on
  232. 68000 machines.
  233.  
  234. Fixed numerous files that did "#include" of "DEFS.H" rather than "defs.h".
  235. This is an innocuous bug on the Amiga, which is case independent, but
  236. it kills cross compilations.
  237.  
  238. ============
  239. VERSION 41.0
  240. ============
  241.  
  242. No significant changes since the 40.6 beta release other than the
  243. mechanism (and macros) for building debug versions has been cleaned
  244. up and the version number has been bumped to 41.0.
  245.  
  246. Did include the cat'able man pages back in the source tree, but no
  247. work has been done yet to track down the sources for the man pages
  248. and arrange for them to be properly integrated into the tree and
  249. have the cat'able versions generated from those sources.
  250.  
  251. ============
  252. VERSION 40.6
  253. ============
  254.  
  255. Many bugs have been fixed since the 40.4 release, including a serious
  256. one that was causing memory corruption and many enforcer or mungwall
  257. hits.
  258.  
  259. Network support has been reintegrated into the library, however it is
  260. still mostly untested.  In particular, many functions are only
  261. available for static linking from the libnet.a library.  By the next
  262. release, it is expected that libnet.a will be incorporated in libc.a.
  263.  
  264. Work is underway to merge the best features from at least two
  265. different strains of the ixemul library.  Many more changes are
  266. expected by the 41.0 release.
  267.  
  268. An environment variable called "IXSTACK" is now used to control the
  269. stack size of programs started by system().  If the current stack is
  270. smaller than the value in IXSTACK, the stack is raised to the value
  271. specified in IXSTACK.  So IXSTACK is a minimum value.
  272.  
  273. Automatic stack checking, with a requestor if the stack overflows, is
  274. available for executables compiled with a version of gcc that supports
  275. the -mstackcheck option.  This also requires linking with new crt0 and
  276. libc.a.
  277.  
  278. Automatic stack extension as necessary is available for executables
  279. compiled with a version of gcc that supports the -mstackextend option.
  280. This also requires linking with new crt0 and libc.a.
  281.